page.tsx 286 B

12345678910111213141516
  1. import React from 'react'
  2. import Main from '@/app/components/datasets/documents'
  3. export type IProps = {
  4. params: { datasetId: string }
  5. }
  6. const Documents = async ({
  7. params: { datasetId },
  8. }: IProps) => {
  9. return (
  10. <Main datasetId={datasetId} />
  11. )
  12. }
  13. export default Documents